home *** CD-ROM | disk | FTP | other *** search
/ Almathera Ten Pack 3: CDPD 3 / Almathera Ten on Ten - Disc 3: CDPD3.iso / scope / 151-175 / scopedisk161 / cgnhlp / help.f < prev    next >
Text File  |  1995-03-19  |  841b  |  25 lines

  1.       SUBROUTINE HELP
  2.       WRITE(6,1) ' '
  3.       WRITE(6,1) '                        CGNHLP'
  4.       WRITE(6,1) 'Author: Ned Kelly'
  5.       WRITE(6,1) ' '
  6.       WRITE(6,1) 'This program is designed to take a .DOC ' //
  7.      + 'file which documents'
  8.       WRITE(6,1) 'a particular program and generate a C so' //
  9.      + 'ucre file called'
  10.       WRITE(6,1) 'HELP.C which is a routine which will dis' //
  11.      + 'play what was in'
  12.       WRITE(6,1) 'the .DOC file.'
  13.       WRITE(6,1) ' '
  14.       WRITE(6,1) 'Calling sequence is:'
  15.       WRITE(6,1) '   CGNHLP ?             Display this fil' //
  16.      + 'e.'
  17.       WRITE(6,1) '   CGNHLP filename      From filename.do' //
  18.      + 'c generate HELP.C'
  19.       WRITE(6,1) '   CGNHLP               Prompt for filen' //
  20.      + 'ame and generate HELP.C'
  21.       WRITE(6,1) ' '
  22.     1 FORMAT(A) 
  23.       RETURN 
  24.       END 
  25.